home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / progs / DIRECTOR / data.z / Lists Lingo.dir / Scripts_87_getLast(aPropertyList).ls < prev    next >
Encoding:
Text File  |  1997-05-10  |  346 b   |  11 lines

  1. on mouseDown
  2.   global gDefaultPropList
  3.   doButton()
  4.   set vLastValue to getLast(gDefaultPropList)
  5.   if stringp(vLastValue) then
  6.     set the text of member "Checking Property getAt Display Field 3" to QUOTE & string(vLastValue) & QUOTE
  7.   else
  8.     set the text of member "Checking Property getAt Display Field 3" to string(vLastValue)
  9.   end if
  10. end
  11.